home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 43
/
Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso
/
-in_the_mag-
/
workbench
/
sql
/
msql-2.0.10.1
/
msql_update
< prev
next >
Wrap
Text File
|
1999-06-14
|
790b
|
55 lines
; $VER: Update msql server (06.06.99)
;
; Installer script for the msql server
; ©1999 Christophe Sollet
;
(set UserLevel.old @user-level)
; Initialize messages.
(set #NoPIns "\nIt's an update mSQL distribution. You must have a previous one installed\nand a valid msql: assign\n")
; the install procedure
; Copy the distribution
(procedure CopyMsql
; Copy all...
(copyfiles (source "")
(dest ilocation)
(all)
)
)
; The install process begin here.
; Welcome the user.
(complete 0)
(welcome)
; Msql install dest.
(if
(=
(exists ("msql:") (noreq)) 2)
(
(set ilocation "msql:")
)
(
(abort #NoPIns)
)
)
; Install all
(CopyMsql)
(complete 100)
; exit
(set @default-dest ilocation)
(exit "the Msql Server have been updated\n")